summaryrefslogtreecommitdiff
path: root/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx')
-rw-r--r--app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx b/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx
index ee31c95b..1254e992 100644
--- a/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx
+++ b/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx
@@ -8,12 +8,16 @@ import { LogIn } from "lucide-react";
import { Shell } from "@/components/shell";
import { VendorQuotationsTable } from "@/lib/techsales-rfq/vendor-response/table/vendor-quotations-table";
import { InformationButton } from "@/components/information/information-button"
+import { useTranslation } from "@/i18n";
+
export const metadata: Metadata = {
title: "기술영업 해양HULL RFQ 관리",
description: "기술영업 해양HULL RFQ를 관리합니다.",
};
-export default async function VendorQuotationsHullPage() {
+export default async function VendorQuotationsHullPage(props: { params: { lng: string } }) {
+ const { lng } = props.params
+ const { t } = await useTranslation(lng, 'menu')
// 세션 확인
const session = await getServerSession(authOptions);
@@ -62,11 +66,11 @@ export default async function VendorQuotationsHullPage() {
<div className="flex-shrink-0 flex flex-col gap-4 md:flex-row md:items-center md:justify-between">
<div>
<div className="flex items-center gap-2">
- <h1 className="text-2xl font-bold tracking-tight">기술영업 해양HULL RFQ</h1>
+ <h1 className="text-2xl font-bold tracking-tight">{t('menu.vendor.sales.offshore_hull_rfq')}</h1>
<InformationButton pagePath="partners/techsales/rfq-offshore-hull" />
</div>
<p className="text-muted-foreground">
- 할당받은 해양HULL RFQ에 대한 견적서를 작성하고 관리합니다.
+ {t('menu.vendor.sales.offshore_hull_rfq_desc')}
</p>
</div>
</div>